home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap09 / howto05 / delphi10 / cciwcc05.dpr < prev    next >
Encoding:
Text File  |  1996-06-11  |  447 b   |  18 lines

  1. program cciwcc05;
  2.  
  3. uses
  4.   Forms,
  5.   Cciccfrm in 'CCICCFRM.PAS' {CCINetCCForm},
  6.   Cciccinf in 'CCICCINF.PAS' {CCICInfoDlg},
  7.   Cciccprf in 'CCICCPRF.PAS' {CCICPrefsDlg};
  8.  
  9. {$R *.RES}
  10.  
  11. begin
  12.   Application.Title := 'CC InterNet Web Command Center';
  13.   Application.CreateForm(TCCINetCCForm, CCINetCCForm);
  14.   Application.CreateForm(TCCICInfoDlg, CCICInfoDlg);
  15.   Application.CreateForm(TCCICPrefsDlg, CCICPrefsDlg);
  16.   Application.Run;
  17. end.
  18.